home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xarchie-2.0.9 / get_vdir.c < prev    next >
C/C++ Source or Header  |  1995-06-18  |  14KB  |  482 lines

  1. /*
  2.  * Copyright (c) 1989, 1990, 1991 by the University of Washington
  3.  *
  4.  * For copying and distribution information, please see the file
  5.  * <copyright.h>.
  6.  */
  7.  
  8. #include <copyright.h>
  9. #include <stdio.h>
  10.  
  11. #include <pfs.h>
  12. #include <pprot.h>
  13. #include <perrno.h>
  14. #include <pcompat.h>
  15. #include <pauthent.h>
  16.  
  17. #include "config.h"                /* gf */
  18. #include "stringdefs.h"                /* gf */
  19.  
  20. #ifdef DEBUG
  21. extern int    pfs_debug;
  22. #endif
  23.  
  24. extern int    pwarn;
  25. extern char    p_warn_string[];
  26. extern int    perrno;
  27. extern char    p_err_string[];
  28.  
  29. /*
  30.  * get_vdir - Get contents of a directory given its location
  31.  *
  32.  *          GET_VDIR takes a directory location, a list of desired
  33.  *          components, a pointer to a directory structure to be 
  34.  *          filled in, and flags.  It then queries the appropriate 
  35.  *          directory server and retrieves the desired information.
  36.  *
  37.  *      ARGS:   dhost       - Host on which directory resides
  38.  *              dfile       - Directory on that host
  39.  *              components  - The names from the directory we want
  40.  *        dir        - Structure to be filled in
  41.  *            flags       - Options.  See FLAGS
  42.  *        filters     - filters to be applied to result 
  43.  *              acomp       - Pointer to remaining components
  44.  *
  45.  *     FLAGS:    GVD_UNION   - Do not expand union links
  46.  *        GVD_EXPAND  - Expand union links locally
  47.  *        GVD_REMEXP  - Request remote expansion (& local if refused)
  48.  *        GVD_LREMEXP - Request remote expansion of local union links
  49.  *        GVD_VERIFY  - Only verify that args are for a directory
  50.  *              GVD_ATTRIB  - Request attributes from directory server
  51.  *              GVD_NOSORT  - Do not sort links when adding to directory
  52.  *
  53.  *   RETURNS:   PSUCCESS (0) or error code
  54.  *        On some codes addition information in p_err_string
  55.  *
  56.  *     NOTES:   If acomp is non-null the string it points to might be modified
  57.  *
  58.  *              If the directory passed as an argument already has
  59.  *        links or union links, then those lists will be freed
  60.  *              before the new contents are filled in.
  61.  *
  62.  *              If a filter is passed to the procedure, and application of
  63.  *              the filter results in additional union link, then those links
  64.  *              will (or will not) be expanded as specified in the FLAGS field.
  65.  *
  66.  *              If the list of components in NULL, or the null string, then
  67.  *              get_vdir will return all links in the requested directory.
  68.  *
  69.  *      BUGS:   Doesn't process union links yet
  70.  *              Doesn't process errors returned from server
  71.  *        Doesn't expand union links if requested to
  72.  */
  73. int
  74. get_vdir(dhost,dfile,components,dir,flags,filters,acomp)
  75.     char    *dhost;        /* Host on which directory resides           */
  76.     char    *dfile;        /* Name of file on that host                 */
  77.     char    *components;    /* Component name (wildcards allowed)        */
  78.     PVDIR    dir;        /* Structure to be filled in             */
  79.     long    flags;        /* Flags                         */
  80.     VLINK    filters;    /* Filters to be applied to result           */
  81.     char    *acomp;        /* Components left to be resolved            */
  82.     {
  83.         PTEXT    request;    /* Text of request to dir server             */
  84.     PTEXT    resp;            /* Response from dir server                 */
  85.  
  86.     char    ulcomp[MAX_VPATH];/* Work space for new current component    */
  87.     char    *comp = components;
  88.  
  89.     VLINK    cur_link = NULL;/* Current link being filled in              */
  90.     VLINK     exp = NULL;     /* The current ulink being expanded         */
  91.     VLINK    pul = NULL;     /* Prev union link (insert new one after it) */
  92.     VLINK    l;        /* Temp link pointer                  */
  93.     int    mcomp;        /* Flag - check multiple components          */
  94.     int    unresp;        /* Flag - received unresolved response       */
  95.     int    getattrib = 0;  /* Get attributes from server                */
  96.     int    vl_insert_flag; /* Flags to vl_insert                        */
  97.  
  98.     int    fwdcnt = MAX_FWD_DEPTH;
  99.  
  100.     int    no_links = 0;   /* Count of number of links found         */
  101.  
  102.     char    options[40];    /* LIST option                               */
  103.     char    *opt;           /* After leading +                           */
  104.  
  105.     PAUTH    authinfo;
  106.  
  107.     /* Treat null string like NULL (return entire directory) */
  108.     if(!components || !*components) comp = NULL;
  109.  
  110.     if(acomp && !filters) mcomp = 1;
  111.     else mcomp = 0;
  112.  
  113.     if(flags&GVD_ATTRIB) {
  114.         getattrib++;
  115.         flags &= (~GVD_ATTRIB);
  116.     }
  117.  
  118.     if(flags&GVD_NOSORT) vl_insert_flag = VLI_NOSORT;
  119.     else vl_insert_flag = VLI_ALLOW_CONF;
  120.     flags &= (~GVD_NOSORT);
  121.  
  122.     if(filters) comp = NULL;
  123.  
  124.     perrno = 0;
  125.  
  126.     authinfo = get_pauth(PFSA_UNAUTHENTICATED);
  127.  
  128.     *options = '\0';
  129.  
  130.     if(getattrib) {
  131.         strcat(options,"+ATTRIBUTES");
  132.         flags &= (~GVD_ATTRIB);
  133.     }
  134.  
  135.     if(!filters) { /* Can't do remote expansion if filters to be applied */
  136.         if(flags == GVD_REMEXP) strcat(options,"+EXPAND");
  137.         if(flags == GVD_LREMEXP) strcat(options,"+LEXPAND");
  138.     }
  139.  
  140.     /* If all we are doing is verifying that dfile is a directory */
  141.     /* then we do not want a big response from the directory      */
  142.     /* server.  A NOT-FOUND is sufficient.                  */
  143.     if(flags == GVD_VERIFY)
  144. #ifdef NEWVERIFYOPT
  145.         strcat(options,"+VERIFY");
  146. #else
  147.     comp = "%#$PRobably_nOn_existaNT$#%";
  148. #endif
  149.  
  150.     if(*options) opt = options+1;
  151.     else opt = "''";
  152.  
  153.     startover:
  154.     request = ptalloc();
  155.  
  156.     sprintf(request->start,
  157.         "VERSION %d %s\nAUTHENTICATOR %s %s\nDIRECTORY ASCII %s\nLIST %s COMPONENTS %s%s%s\n",
  158.         VFPROT_VNO, PFS_SW_ID, authinfo->auth_type,
  159.         authinfo->authenticator, dfile, opt,
  160.         (comp ? comp : ""), (mcomp ? "/" : ""),
  161.         (mcomp ? acomp : ""));
  162.  
  163.     request->length = strlen(request->start);
  164.  
  165. #ifdef DEBUG
  166.     if(pfs_debug > 2)
  167.         fprintf(stderr,"Sending message to dirsrv:\n%s",request->start);
  168. #endif
  169.  
  170. #if defined(MSDOS)
  171.     resp = dirsend(request,dhost,0L);
  172. #else
  173.     resp = dirsend(request,dhost,0);
  174. #endif
  175.  
  176. #ifdef DEBUG
  177.     if(pfs_debug && (resp == NULL)) {
  178.         fprintf(stderr,"Dirsend failed: %d\n",perrno);
  179.     }
  180. #endif
  181.  
  182.     /* If we don't get a response, then if the requested       */
  183.     /* directory, return error, if a ulink, mark it unexpanded */
  184.     if(resp == NULL) {
  185.         if(exp) exp->expanded = FAILED;
  186.         else return(perrno);
  187.     }
  188.  
  189.     unresp = 0;
  190.  
  191.     /* Here we must parse reponse and put in directory */
  192.     /* While looking at each packet            */
  193.     while(resp) {
  194.         PTEXT        vtmp;
  195.         char        *line;
  196.  
  197.         vtmp = resp;
  198. #ifdef DEBUG
  199.         if(pfs_debug > 3) fprintf(stderr,"%s\n",resp->start);
  200. #endif
  201.         /* Look at each line in packet */
  202.         for(line = resp->start;line != NULL;line = nxtline(line)) {
  203.         switch (*line) {
  204.             
  205.             /* Temporary variables to hold link info */
  206.             char    l_linktype;
  207.             char     l_name[MAX_DIR_LINESIZE];
  208.             char    l_type[MAX_DIR_LINESIZE];
  209.             char     l_htype[MAX_DIR_LINESIZE];
  210.             char     l_host[MAX_DIR_LINESIZE];
  211.             char     l_ntype[MAX_DIR_LINESIZE];
  212.             char     l_fname[MAX_DIR_LINESIZE];
  213.             int        l_version;
  214.             char     t_unresolved[MAX_DIR_LINESIZE];
  215.             int        l_magic;
  216.             int        tmp;
  217.  
  218.         case 'L': /* LINK or LINK-INFO */
  219.             if(strncmp(line,"LINK-INFO",9) == 0) {
  220.             PATTRIB        at;
  221.             PATTRIB        last_at;
  222.             at = parse_attribute(line);
  223.             if(!at) break;
  224.  
  225.             /* Cant have link info without a link */
  226.             if(!cur_link) {
  227.                 perrno = DIRSRV_BAD_FORMAT;
  228.                 atfree(at);
  229.                 break;
  230.             }
  231.             
  232.             if(cur_link->lattrib) {
  233.                 last_at = cur_link->lattrib;
  234.                 while(last_at->next) last_at = last_at->next;
  235.                 at->previous = last_at;
  236.                 last_at->next = at;
  237.             }
  238.             else {
  239.                 cur_link->lattrib = at;
  240.                 at->previous = NULL;
  241.             }
  242.             break;
  243.             }
  244.  
  245.             /* Not LINK-INFO, must be LINK - if not check for error */
  246.             if(strncmp(line,"LINK",4) != 0) goto scanerr;
  247.  
  248.             /* If only verifying, don't want to change dir */
  249.             if(flags == GVD_VERIFY) {
  250.             break;
  251.             }
  252.             /* If first link and some links in dir, free them */
  253.             if(!no_links++) {
  254.             if(dir->links) vllfree(dir->links); dir->links=NULL;
  255.             if(dir->ulinks) vllfree(dir->ulinks); dir->ulinks=NULL;
  256.             }
  257.             
  258.             cur_link = vlalloc();
  259.  
  260.             /* parse and insert file info */
  261.             tmp = sscanf(line,"LINK %c %s %s %s %s %s %s %d %d", &l_linktype,
  262.                  l_type, l_name, l_htype, l_host, 
  263.                  l_ntype, l_fname, &(cur_link->version),
  264.                  &(cur_link->f_magic_no));
  265.  
  266.             if(tmp != 9) {
  267.             perrno = DIRSRV_BAD_FORMAT;
  268.             vlfree(cur_link);
  269.             break;
  270.             }
  271.  
  272.             cur_link->linktype = l_linktype;
  273.             cur_link->type = stcopyr(l_type,cur_link->type);
  274.             cur_link->name = stcopyr(unquote(l_name),cur_link->name);
  275.             cur_link->hosttype = stcopyr(l_htype,cur_link->hosttype);
  276.             cur_link->host = stcopyr(l_host,cur_link->host);
  277.             cur_link->nametype = stcopyr(l_ntype,cur_link->nametype);
  278.             cur_link->filename = stcopyr(l_fname,cur_link->filename);
  279.  
  280.             /* Double check to make sure we don't get */
  281.             /* back unwanted components              */
  282.             /* OK to keep if special (URP) links      */
  283.             /* or if mcomp specified                  */
  284.             if(!mcomp && (cur_link->linktype == 'L') && 
  285.                (!wcmatch(cur_link->name,comp))) {
  286.             vlfree(cur_link);
  287.             break;
  288.             }
  289.  
  290.             /* If other optional info was sent back, it must */
  291.             /* also be parsed before inserting link     ***  */
  292.             
  293.             
  294.             if(cur_link->linktype == 'L') 
  295.             vl_insert(cur_link,dir,vl_insert_flag);
  296.             else {
  297.             tmp = ul_insert(cur_link,dir,pul);
  298.  
  299.             /* If inserted after pul, next one after cur_link */
  300.             if(pul && (!tmp || (tmp == UL_INSERT_SUPERSEDING)))
  301.                 pul = cur_link;
  302.             }
  303.             
  304.             break;
  305.  
  306.         case 'F': /* FILTER, FAILURE or FORWARDED */
  307.             /* FORWARDED */
  308.             if(strncmp(line,"FORWARDED",9) == 0) {
  309.             if(fwdcnt-- <= 0) {
  310.                 ptlfree(resp);
  311.                 perrno = PFS_MAX_FWD_DEPTH;
  312.                 return(perrno);
  313.             }
  314.             /* parse and start over */
  315.  
  316.             tmp = sscanf(line,"FORWARDED %s %s %s %s %d %d", 
  317.                      l_htype,l_host,l_ntype,l_fname,
  318.                      &l_version, &l_magic);
  319.  
  320.             dhost = stcopy(l_host);
  321.             dfile = stcopy(l_fname);
  322.  
  323.             if(tmp < 4) {
  324.                 perrno = DIRSRV_BAD_FORMAT;
  325.                 break;
  326.             }
  327.  
  328.             ptlfree(resp);
  329.             goto startover;
  330.             }
  331.             if(strncmp(line,"FILTER",6) != 0) goto scanerr;
  332.             break;
  333.  
  334.  
  335.         case 'M': /* MULTI-PACKET (processed by dirsend) */
  336.         case 'P': /* PACKET (processed by dirsend) */
  337.             break;
  338.  
  339.         case 'N': /* NOT-A-DIRECTORY or NONE-FOUND */
  340.             /* NONE-FOUND, we just have no links to insert */
  341.             /* It is not an error, but we must clear any   */
  342.             /* old links in the directory arg              */
  343.             if(strncmp(line,"NONE-FOUND",10) == 0) {
  344.             /* If only verifying, don't want to change dir */
  345.             if(flags == GVD_VERIFY) {
  346.                 break;
  347.             }
  348.  
  349.             /* If first link and some links in dir, free them */
  350.             if(!no_links++) {
  351.                 if(dir->links) vllfree(dir->links);
  352.                 if(dir->ulinks) vllfree(dir->ulinks);
  353.                 dir->links = NULL;
  354.                 dir->ulinks = NULL;
  355.             }
  356.             break;
  357.             }
  358.             /* If NOT-A-DIRECTORY or anything else, scan error */
  359.             goto scanerr;
  360.  
  361.         case 'U': /* UNRESOLVED */
  362.             if(strncmp(line,"UNRESOLVED",10) != 0) {
  363.             goto scanerr;
  364.             }
  365.             tmp = sscanf(line,"UNRESOLVED %s", t_unresolved);
  366.             if(tmp < 1) {
  367.             perrno = DIRSRV_BAD_FORMAT;
  368.             break;
  369.             }
  370.             /* If multiple components were resolved */
  371.             if(strlen(t_unresolved) < strlen(acomp)) {
  372.             strcpy(ulcomp,acomp);
  373.             /* ulcomp is the components that were resolved */
  374.             *(ulcomp+strlen(acomp)-strlen(t_unresolved)-1) = '\0';
  375.             /* Comp gets the last component resolved */
  376.             comp = (char *) rindex(ulcomp,'/');
  377.             if(comp) comp++;
  378.             else comp = ulcomp;
  379.             /* Let rd_vdir know what remains */
  380.             strcpy(acomp,t_unresolved);
  381.             }
  382.             unresp = 1;
  383.             break;
  384.  
  385.         case 'V': /* VERSION-NOT-SUPPORTED */
  386.             if(strncmp(line,"VERSION-NOT-SUPPORTED",21) == 0) {
  387.             perrno = DIRSRV_BAD_VERS;
  388.             return(perrno);
  389.             }
  390.             goto scanerr;
  391.  
  392.         scanerr:
  393.         default:
  394.             if(*line && (tmp = scan_error(line))) {
  395.             ptlfree(resp);
  396.             return(tmp);
  397.             }
  398.             break;
  399.         }
  400.         }
  401.  
  402.         resp = resp->next;
  403.  
  404.         ptfree(vtmp);
  405.     }
  406.  
  407.     /* We sent multiple components and weren't told any */
  408.     /* were unresolved                                  */
  409.     if(mcomp && !unresp) {
  410.         /* ulcomp is the components that were resolved */
  411.         strcpy(ulcomp,acomp);
  412.         /* Comp gets the last component resolved */
  413.         comp = (char *) rindex(ulcomp,'/');
  414.         if(comp) comp++;
  415.         else comp = ulcomp;
  416.         /* If we have union links to resolve, only one component remains */
  417.         mcomp = 0;
  418.         /* Let rd_vdir know what remains */
  419.         *acomp = '\0';
  420.     }
  421.  
  422.     /* If only verifying, we already know it is a directory */
  423.     if(flags == GVD_VERIFY) return(PSUCCESS);
  424.  
  425.     /* Don't return if matching was delayed by the need to filter    */
  426.     /* if FIND specified, and dir->links is non null, then we have   */
  427.     /* found a match, and should return.                             */
  428.     if((flags & GVD_FIND) && dir->links && (!filters))
  429.         return(PSUCCESS);
  430.  
  431.     /* If expand specified, and ulinks must be expanded, making sure */
  432.         /* that the order of the links is maintained properly            */
  433.  
  434. expand_ulinks:
  435.  
  436.     if((flags != GVD_UNION) && (flags != GVD_VERIFY)) {
  437.  
  438.         l = dir->ulinks;
  439.  
  440.         /* Find first unexpanded ulink */
  441.         while(l && l->expanded && (l->linktype == 'U')) l = l->next;
  442.         
  443.         /* Only expand if a FILE or DIRECTORY -  Mark as  */
  444.             /* failed otherwise                               */
  445.         /* We must still add support for symbolic ulinks */
  446.         if(l) {
  447.         if ((strcmp(l->type,"DIRECTORY") == 0) || 
  448.             (strcmp(l->type,"FILE") == 0)) {
  449.             l->expanded = TRUE;
  450.             exp = l;
  451.             pul = l;
  452.             dhost = l->host;
  453.             dfile = l->filename;
  454.             goto startover; /* was get_contents; */
  455.         }
  456.         else l->expanded = FAILED;
  457.         }
  458.     }
  459.  
  460.     /* Double check to make sure we don't get */
  461.     /* back unwanted components          */
  462.     /* OK to keep if special (URP) links      */
  463.     if(components && *components) {
  464.         l = dir->links;
  465.         while(l) {
  466.         VLINK    ol;
  467.         if((l->linktype == 'L') && (!wcmatch(l->name,components))) {
  468.             if(l == dir->links)
  469.             dir->links = l->next;
  470.             else l->previous->next = l->next;
  471.             if(l->next) l->next->previous = l->previous;
  472.             ol = l;
  473.             l = l->next;
  474.             vlfree(ol);
  475.         }
  476.         else l = l->next;
  477.         }
  478.     }
  479.  
  480.     return(PSUCCESS);
  481.     }
  482.